home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2006 February
/
PCWorld_2006-02_cd.bin
/
software
/
topware
/
pspad
/
pspad450inst_cz.exe
/
{app}
/
Template
/
Delphi Object.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2004-02-24
|
594b
|
38 lines
{ replace all occurence of "MyObject" with your object name }
unit {Unit_name};
interface
uses
Windows, Messages, SysUtils, Classes;
type
TMyObject = class(TObject)
private
{ Private declarations }
public
constructor Create;
destructor Destroy; override;
{ Public declarations }
end;
var
MyObject: TMyObject;
implementation
{ Object constructor }
constructor TMyObject.Create;
begin
inherited Create;
{ enter your code here }
end;
destructor TMyObject.Destroy;
begin
{ enter your code here }
inherited;
end;
end.